@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,400&family=Ubuntu:ital,wght@0,400;0,700;1,400&display=swap");
* {
  list-style-type: none;
}

body {
  font-family: 'Poppins', sans-serif;
  list-style-type: none;
  background-color: #161616;
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
}

#Home {
  background-color: #ebfffe;
  width: 100%;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.NavigationBar {
  left: 0px;
  top: 0px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: 2px;
  font-weight: 400;
  background-color: #ebfffe;
  padding: 5px 10vw;
  z-index: 1;
}

.NavigationBar .logoInNavigation a {
  color: #292929;
  font-weight: 700;
  font-size: 25px;
  font-family: 'Ubuntu',sans-serif;
}

.NavigationBar .menuElements ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 1vw;
}

.NavigationBar .menuElements ul li a {
  color: #161616;
  padding: 7px 1vw;
  border-radius: 2px;
}

.NavigationBar .menuElements li a:hover {
  background-color: #ffd240;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  color: #ebfffe;
}

.NavigationBar .menu-btn {
  font-size: 20px;
  display: none;
}

.Homepage .IntroSection {
  position: absolute;
  top: 30vh;
  left: 10%;
  width: auto;
  letter-spacing: 1px;
}

.Homepage .IntroSection .greeting,
.Homepage .IntroSection .profession {
  font-size: 2vh;
}

.Homepage .IntroSection .name {
  font-size: 3vh;
  font-weight: bold;
  letter-spacing: 0.5vw;
}

.Homepage .IntroSection .name span {
  background-color: #ffd240;
  color: #ebfffe;
  padding: 10px;
  border-radius: 2px;
}

.Homepage .IntroSection .CV-btn {
  margin-top: 10vh;
}

.Homepage .IntroSection .CV-btn a {
  border: solid 1px #161616;
  color: #ebfffe;
  font-size: 2vh;
  padding: 10px 15px;
  background-color: #292929;
}

.Homepage .IntroSection .CV-btn a:hover {
  background-color: #ffd240;
  color: #ebfffe;
  border-color: #ebfffe;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.Homepage .IntroSection .sociallinks i {
  font-size: 4vh;
  padding: 2%;
}

.Homepage .IntroSection .sociallinks a {
  color: #292929;
}

@media (max-width: 993px) {
  .NavigationBar .menu-btn {
    color: #292929;
    font-size: 25px;
    display: block;
    -webkit-transition: all ease 0.5f;
    transition: all ease 0.5f;
    padding: 1.7vw;
  }
  .NavigationBar .menuElements {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */